home *** CD-ROM | disk | FTP | other *** search
/ The Madness of Roland / MADNESS of Roland.iso / REXPAND1.BAT < prev    next >
DOS Batch File  |  1994-10-01  |  3KB  |  85 lines

  1. @echo off 
  2.  
  3. rem -------------------------------------------------------------------------
  4. rem  In case the Roland setup program fails for some reason, you can manually
  5. rem  install Roland by following the directions below:
  6. rem
  7. rem     1) Create a Roland directory on your hard disk.
  8. rem
  9. rem     2) Run REXPAND1.BAT from the Roland CD.  Type 
  10. rem        "REXPAND1 <destination directory>".  This will
  11. rem        expand compressed files into your Roland directory.
  12. rem
  13. rem     3) Run REXPAND2.BAT from the Roland CD.  Type
  14. rem        "REXPAND2 <path to your WINDOWS\SYSTEM dir>".  This will
  15. rem        expand compressed files to your WINDOWS\SYSTEM directory.     
  16. rem        (The files copied are VBRUN300.DLL and VER.DLL.  They will
  17. rem        only be copied if the files do not already exist).
  18. rem
  19. rem     4) Copy the ROLAND.INI file from the Roland CD into your
  20. rem        WINDOWS directory.  You may need to modify the CDROM_PATH
  21. rem        entry to point to your CD drive (1 = A:\, 2 = B:\, 3 = C:\,
  22. rem        4 = D:\, etc).
  23. rem
  24. rem     5) To make a program icon for Roland, create a new program item
  25. rem        from the File New menu.  Set the command line property for the
  26. rem        icon to "<path to Roland directory>\ROLAND.EXE".  Set the 
  27. rem        working directory property to "<path to Roland directory>".
  28. rem ------------------------------------------------------------------------
  29.  
  30. rem --- Catch command line errors.  Must type "REXPAND1 <dest>".
  31. if "%1"=="" goto help1         rem Did not enter destination  
  32. if not "%2"=="" goto help2     rem Entered both source and dest--   
  33.                                rem don't want source
  34.  
  35. rem --- Expand compressed files to the specified Roland directory
  36. EXPAND -r ROLGUTS.EX_ %1
  37. EXPAND -r ROLAND.EX_ %1
  38. EXPAND -r FXIMG140.VB_ %1
  39. EXPAND -r FXLBL140.VB_ %1
  40. EXPAND -r FXTLS140.DL_ %1
  41. EXPAND -r MHSL200.VB_ %1
  42. EXPAND -r NOTE09.IC_ %1
  43. EXPAND -r README.EX_ %1
  44. EXPAND -r ROL-ICON.IC_ %1
  45. EXPAND -r ROLAND.WR_ %1
  46. EXPAND -r MHRUN400.DL_ %1
  47. EXPAND -r PICCLIP.VB_ %1
  48. EXPAND -r QTNOTIFY.EX_ %1
  49. EXPAND -r PLAYENU.DL_ %1
  50. EXPAND -r PLAYFRA.DL_ %1
  51. EXPAND -r QCMC.QT_ %1
  52. EXPAND -r QTCVID.QT_ %1
  53. EXPAND -r QTHNDLR.DL_ %1
  54. EXPAND -r QTIM.DL_ %1
  55. EXPAND -r QTIMCMGR.DL_ %1
  56. EXPAND -r QTJPEG.QT_ %1
  57. EXPAND -r QTMOVIE.VB_ %1
  58. EXPAND -r QTOLE.DL_ %1
  59. EXPAND -r QTRAW.QT_ %1
  60. EXPAND -r QTRLE.QT_ %1
  61. EXPAND -r QTRPZA.QT_ %1
  62. EXPAND -r QTRT21.QT_ %1
  63. EXPAND -r QTSMC.QT_ %1
  64. EXPAND -r QTVHDW.DL_ %1
  65. EXPAND -r VIEWENU.DL_ %1
  66. EXPAND -r VIEWFRA.DL_ %1
  67. EXPAND -r MCIQTENU.DL_ %1
  68. EXPAND -r MCIQTW.DR_ %1
  69. EXPAND -r NAVG.QT_ %1
  70. goto quit
  71.  
  72. :help1
  73. echo.
  74. echo Please specify the destination directory:  "REXPAND1 <destination>"
  75. echo.
  76. goto quit
  77.  
  78. :help2 
  79. echo.
  80. echo Make sure you are running REXPAND1 from the Roland CD:  "REXPAND1 <destination>"
  81. echo.
  82.  
  83. :quit
  84.  
  85.